home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000082_news@columbia.edu_ 26 Apr 2001 14:44:17 GMT.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  44 lines

  1. Sender: default@cc253090-a.sumt1.nj.home.com
  2. Newsgroups: comp.os.linux.networking,comp.protocols.kermit.misc
  3. Subject: Re: copying a file to a ftp-server
  4. References: <20010426.13080200@risa.athome> <9c9b2o$gej$1@newsmaster.cc.columbia.edu>
  5. Content-Type: text/plain; charset=US-ASCII
  6. From: Dan Espen <dane@mk.telcordia.com>
  7. Message-ID: <m3r8yfsovr.fsf@cc253090-a.sumt1.nj.home.com>
  8. Organization: Telcordia
  9. Lines: 24
  10. User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Crater Lake)
  11. MIME-Version: 1.0
  12. Date: Thu, 26 Apr 2001 14:44:17 GMT
  13. NNTP-Posting-Host: 24.3.184.51
  14. X-Complaints-To: abuse@home.net
  15. X-Trace: news1.rdc1.nj.home.com 988296257 24.3.184.51 (Thu, 26 Apr 2001 07:44:17 PDT)
  16. NNTP-Posting-Date: Thu, 26 Apr 2001 07:44:17 PDT
  17. Xref: newsmaster.cc.columbia.edu comp.os.linux.networking:329853 comp.protocols.kermit.misc:12368
  18.  
  19. fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  20.  
  21. > In article <20010426.13080200@risa.athome>,
  22. > <christian.verbeek@gmd.de> wrote:
  23. > : Dear newgroup,
  24. > : 
  25. > : how do i put a single file to a ftp server from the command line. With=20
  26. > : the ftp program i always end up in interactive mode, but i want to do=20
  27. > : this from within a script.
  28. > : 
  29. > : So i need something like: ftpcopy myfile ftp://myftpserver
  30. > : 
  31. > If you use the new Kermit FTP client:
  32.  
  33. Thats nice but not necessary.
  34.  
  35. Put the username and password in your .netrc.  You don't want
  36. your password in a script, and its simpler that way.  Then do this:
  37.  
  38. (\
  39. echo "put filename\n"\
  40.  "close\n"\
  41.  "quit\n"\
  42. ) | ftp hostname
  43.  
  44.